home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 11 / CU Amiga Magazine's Super CD-ROM 11 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-06].iso / cucd / programming / dignet / dignetupd.readme < prev   
Text File  |  1997-03-29  |  2KB  |  55 lines

  1. Short:    Update dignet.library to 3.03
  2. Uploader: kenny@bgnett.no (Kenneth "Kenny" Nilsen)
  3. Author:   kenny@bgnett.no (Kenneth "Kenny" Nilsen)
  4. Type:     util/libs 
  5. Version:  3.030 (UPDATE ONLY)
  6.  
  7.  
  8. $VER: dignet.library 3.03 (29.03.97)
  9.  
  10. Copyright (C) 1997 by Digital Surface/Kenneth "Kenny" Nilsen.
  11. All rights reserved.
  12.  
  13. UPDATE ARCHIVE (get the main archive util/libs/DigNet.lha for docs++).
  14.  
  15.     - InitModem() problem (- Thanks to Ernest J. Gainey III)
  16.       Function was documented to accept NULL pointer for init string
  17.       which should cause it to use default init string (ATZ\r).
  18.           Routine skipped out due to resource tracking if initstring was
  19.       nullpointer. Nothing seem to make a difference no matter how I
  20.           changed the library code.
  21.  
  22.           Solution: Init-string is now required for InitModem() !
  23.  
  24.       Also discovered a minor bug in DignetDEBUG. It had moved command
  25.           names pointers so it reported wrong names from number 29. Fixed!
  26.  
  27.           Tested with nullmodem.device and it works fine as long as you
  28.           don't use the InitDefault() function (something there that
  29.           nullmodem.device doesn't like.. dunno what)
  30.  
  31. Also thanks to Ernest J. Gainey III for Modula 2 includes!
  32.  
  33. This is only an update file. Get the whole archive util/libs/DigNet.lha
  34. version 3 from Aminet to read documentations and to get FD files etc.
  35.  
  36. ----------------------------------------------------------------------------
  37.  
  38. INTRODUCTION
  39.  
  40. Always  wanted to make games or programs that could support serial network ?
  41. This will maybe be the solution for you.  This library will do all the dirty
  42. work  for  you.   All  you need to do is to call read and write functions to
  43. communicate.   No  more hustling with setting up structures, ports and pools
  44. to use the device.  No more DoIO.
  45.  
  46. From  version  3  you  can  even  dialup  via modem or receive from modem by
  47. calling a function.  The function do the dial/wait studd and return error or
  48. baud speeds.  You can even make your own BBS program.
  49.  
  50. Tested with duart.device 0 and 1 with nullmodem-cable.  Tested agains modem.
  51. Should work fine with serial.device and compatible devices.  Do not use with
  52. other devices such as trackdisk.device etc.
  53.  
  54. The library functions are fully re-entrant.
  55.